home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Tetris / Documentation / ChangeLog < prev    next >
Text File  |  1981-10-03  |  1KB  |  37 lines

  1. Sat Feb 29 22:23:29 1992  Michael Mellinger  (melling at schubert)
  2.  
  3.     * (ScoreKeeper.m) (username):
  4.     Added patch by Detlev Droege <droege@nemo.uni-koblenz.de>
  5.         to allow for extended GECOS field handling.
  6.  
  7.     * MiniMatrix.m (setBitmap::):
  8.     Changed if condition  from
  9.       if (row<=25 && row>=0) {
  10.     to  
  11.           if (row < numRows && row >= 0 && column < numCols && column >= 0) {
  12.  
  13.        This should prevent the game from crashing at the end of the game.
  14.        Solution provided by: dml@mozart.ESL.COM (Denis Lynch)
  15. ----------------------------------------------------------------------
  16. melling@cs.psu.edu                                      11/21/91
  17.  
  18. There is bug in Pieces.m where y gets set to an abnormally large
  19. value.  I do a range check in MiniMatrix.m in the method where the
  20. program normally dies.  A cheap, but I hope effective solution.
  21.  
  22.    - setBitmap:theBitmap at:(int)row :(int)column
  23.  
  24. If row is >25, I print an error message to stderr.  The bug
  25. manifests itself at the end of the game when the pieces are near the
  26. top of the game display.
  27. ----------------------------------------------------------------------
  28. melling@cs.psu.edu                                      10/17/91
  29.  
  30. Converted Tetris to NeXTStep 2.0
  31. ----------------------------------------------------------------------
  32. From Tetris 1.0
  33.  
  34. Double fade
  35.  
  36. ----------------------------------------------------------------------
  37.